colorbutton: Don't notify nonexistent properties
authorTimm Bäder <mail@baedert.org>
Sat, 22 Oct 2016 19:47:12 +0000 (21:47 +0200)
committerTimm Bäder <mail@baedert.org>
Sat, 22 Oct 2016 19:51:59 +0000 (21:51 +0200)
gtk/gtkcolorbutton.c

index a0a442dc3d05f90744b8560c70136e39d9af43db..8bab7e0dff582df5a43ea083db54d48eeb18bfd8 100644 (file)
@@ -282,8 +282,6 @@ gtk_color_button_drag_data_received (GtkWidget        *widget,
   g_signal_emit (button, color_button_signals[COLOR_SET], 0);
 
   g_object_freeze_notify (G_OBJECT (button));
-  g_object_notify (G_OBJECT (button), "color");
-  g_object_notify (G_OBJECT (button), "alpha");
   g_object_notify (G_OBJECT (button), "rgba");
   g_object_thaw_notify (G_OBJECT (button));
 }
@@ -472,8 +470,6 @@ dialog_response (GtkDialog *dialog,
       g_signal_emit (button, color_button_signals[COLOR_SET], 0);
 
       g_object_freeze_notify (G_OBJECT (button));
-      g_object_notify (G_OBJECT (button), "color");
-      g_object_notify (G_OBJECT (button), "alpha");
       g_object_notify (G_OBJECT (button), "rgba");
       g_object_thaw_notify (G_OBJECT (button));
       g_object_unref (button);